/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background: #F5F7FA;
    color: #231F20;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;  /* Centers content horizontally */
    height: 100vh;  /* Full viewport height */
}

/* Main Container */
.main-container {
    width: 80%;
    padding-top: 120px;
}

/* Header */
header {
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #231F20;
}


.logo img {
    max-width: 500px;  /* Ensures the image is responsive */
    height: auto;
}

/* Role Selection Container */
.role-selection {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

/* Role Card Styles */
.role-card {
    width: 250px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.role-card i {
    font-size: 50px;
    margin-bottom: 10px;
}

.role-card h2 {
    font-size: 24px;
}

.role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Colors for Different Roles */
.admin { background: #FFFFFF;}
.student { background: #FFFFFF; }
.faculty { background: #FFFFFF; }
