/* Sign In Page Styles */

html {
    overflow-y: scroll;
}

body {
    background-color: #0f172a;
    font-family: 'Inter', sans-serif;
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    overflow: visible;
}

.login-container {
    background: transparent;
    padding: 3rem;
    width: 100%;
    max-width: 450px;
}

.login-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

.school-prompt {
    text-align: center;
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.tab:hover {
    color: #8b5cf6;
}

.tab.active {
    background: transparent;
    color: #8b5cf6;
    border-bottom: 2px solid #8b5cf6;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Orbitron', sans-serif;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    color: #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.form-input:focus {
    outline: none;
    border-bottom-color: #8b5cf6;
}

.form-input::placeholder {
    color: #64748b;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.submit-btn:hover {
    background: #8b5cf6;
    color: white;
}

.submit-btn:active {
    transform: scale(0.98);
}

.error-message {
    display: none;
    color: #ef4444;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}

.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}
