/* Import Chakra Petch font (free alternative) */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400&display=swap');

/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Chakra Petch', sans-serif;
    background-image: linear-gradient(to bottom right, #138897, #141d1c);
    color: #fff;
    padding-bottom: 50px;
    overflow-y: auto;
}

/* Container styles */
.container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #1e2225;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #3cf2ff;
}

/* Heading styles */
h1 {
    text-align: center;
    color: #3cf2ff;
    font-size: 32px;
    margin-bottom: 30px;
}

/* Label styles */
label {
    display: block;
    margin: 10px 0 5px;
    color: #b5faff;
    font-size: 14px;
}

/* Input styles */
input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 6px;
    background-color: #2a3136;
    color: #fff;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(107, 225, 255, 0.5);
}

/* Email preview styles */
#emailPreview {
    background-color: #2a3136;
    padding: 20px;
    border: 1px solid #3cf2ff;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #b5faff;
}

/* Preview name styles */
#previewName {
    font-weight: bold;
    color: #3cf2ff;
}

/* Button styles */
button {
    display: block;
    width: 100%;
    padding: 14px;
    background-image: linear-gradient(to right, #0a5863, #141d1c);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: background-image 0.3s ease;
}

button:hover {
    background-image: linear-gradient(to right, #167180c0, #0f4952);
}

/* Footer styles */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

footer p {
    margin: 0;
}

footer a {
    color: #3cf2ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}