.app-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    min-height: 0;
}

.page-content {
    flex-shrink: 0;
}

.login-page {
    height: 100vh;
    width: 100vw;

    background-image: url("/assets/images/background.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.login-card {
    background-color: #ffffff;
    padding: 40px 36px;
    border-radius: 12px;
    width: 360px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.login-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
}

.login-subtitle {
    margin-top: 10px;
    font-size: 14px;
    color: #64748b;
}

.login-button {
    display: block;
    margin-top: 28px;
    padding: 10px 16px;
    background-color: #3592C3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.login-button:hover {
    background-color: #344766;
    transform: translateY(-1px);
}

