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

body {
    font-family: 'Neue Haas Display', sans-serif;
    background-color: #f0f4f8;
    color: #2d3748;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
}

a {
    color: #14b8a6;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: #2b6cb0;
}

/* Form Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: linear-gradient(45deg, #e6f7ff, #ffffff);
}

/* Form */
.form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #14b8a6, #63b3ed, #14b8a6);
}

.logo {
    width: 200px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.title {
    font-size: 2.25rem;
    color: #2d3748;
    margin-bottom: 2.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hidden {
    display: none;
}

.input-group {
    text-align: left;
}

.input-group label {
    font-weight: 600;
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.input-group input:focus {
    border-color: #14b8a6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(66, 153, 225, 0.15);
    background-color: white;
}

button {
    width: 100%;
    padding: 1.25rem;
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #14b8a6 0%, #63b3ed 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.2);
}

button:hover {
    background: linear-gradient(135deg, #3182ce 0%, #14b8a6 100%);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.3);
}

button:active {
    transform: translateY(1px);
}

.form-switch {
    margin-top: 2rem;
    font-size: 1rem;
    color: #2d3748;
    padding: 1.25rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
