/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Nov 11, 2025, 9:10:27 AM
    Author     : rodysoft
*/
/* Index/Welcome Page Styles */
.welcome-section {
    text-align: center;
    color: white;
    background: #020024;
background: linear-gradient(358deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 22%, rgba(0, 212, 255, 1) 100%);
    padding: 80px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 20px;   
}

.welcome-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.welcome-section p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.login-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.student-btn, .staff-btn, .admin-btn {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    width: 200px;
}

.student-btn:hover, .staff-btn:hover, .admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.student-btn { background: #4CAF50; }
.staff-btn { background: #2196F3; }
.admin-btn { background: #FF9800; }

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 20px;
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: var(--primary);
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}
