.container {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', system-ui, sans-serif;
}

.pink{
    color: var(--pink);
    font-weight: bold;
    font-size: inherit;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 380px;
    padding: 48px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

h2 {
    color: var(--light-grey);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
}

.input_section{
    width: 100%;
    height: auto;
    display: flex;
    gap: 10px;
}

.input {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: white;
    font-size: 16px;
    text-align: left;
    transition: all 0.3s ease;
    outline: none;
}

.input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ff00cc;
    box-shadow: 0 0 0 4px rgba(255, 0, 204, 0.15);
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.email-preview {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 24px;
    font-weight: 500;
}

.button {
    padding: 16px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: white;
}

.button:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ff00cc;
    box-shadow: 0 0 0 4px rgba(255, 0, 204, 0.15);
}

.button:active {
    transform: scale(0.95);
}

.link {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 16px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s;
}

.link:hover {
    color: #ffffff;
}

.back_button{
    padding-top: 25px;
    font-size: 10px;
}

.back_button:hover{
    text-decoration: underline;
}

/* Spinner */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
