﻿body {
    background: #152751 url(/View/img/background_login.png);
    font-family: 'Montserrat';
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.banner {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    min-width: 340px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.title {
    color: white;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.header-section a {
    text-decoration: none;
}

.logo {
    margin-top: 1rem;
}

.welcome-section {
    text-align: center;
}

    .welcome-section h3 {
        font-size: 22px;
        color: #004fdb;
    }

    .welcome-section p {
        font-size: 15px;
        color: #666;
        margin-bottom: 2rem;
    }

.buttons-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.access-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .access-button:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.button-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .button-icon svg {
        width: 28px;
        height: 28px;
    }

.button-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.button-title {
    font-size: 20px;
    font-weight: bold;
    display: block;
}

.button-subtitle {
    font-size: 14px;
    opacity: 0.9;
    display: block;
}

.students-button {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
}

    .students-button:hover {
        background: linear-gradient(135deg, #5a9ff2 0%, #4585c7 100%);
    }

.prospects-button {
    background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
    color: white;
}

    .prospects-button:hover {
        background: linear-gradient(135deg, #6cc86c 0%, #54ad54 100%);
    }

.footer-section {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

    .footer-section p {
        font-size: 13px;
        color: #aaa;
    }
