﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background-color: #f4f4f9 !important;
    background-image: var(--bgLogin) !important;
    background-size: cover !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100vh !important;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 400px;
    max-width: 100%;
}

.login-logoInstitucion {
    background-image: var(--logoInstitucion);
    background-size: contain;
    display: flex;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background-position: center;
}

.login-degradado {
    background-image: linear-gradient(to right, #5d6778, #fafafa);
    background-position: center, center bottom;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 500px;
    position: absolute;
    top: 15px;
    left: 0;
}
.login-logoSistema {
    background-image: var(--logoSistema);
    background-size: contain;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 400px;
    background-position: center;
}

.login-title {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 4px 5px;
    margin-left: 45%;
    margin-right: -30px;
    border: none;
    cursor: pointer;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
    font-family: 'Montserrat';
}
.login-axtic {
    color: var(--secondary-color);
    text-align: center;
    display: flex;
    justify-content: center;
    font-size:12px;
    font-family: 'Montserrat';
    bottom:20px;
    position:absolute;
    display:block;
}

    .login-axtic a {
        font-weight: bold;
        color: var(--axtic-primary-color)!important;
    }

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        font-size: 14px;
        color: #666;
    }

    .input-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-top: 5px;
        font-size: 14px;
    }

        .input-group input:focus {
            border-color: #3498db;
            outline: none;
        }

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--accent-color);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

    .submit-btn:hover {
        background-color: #2980b9;
    }

.forgot-password {
    text-align: center;
    margin-top: 10px;
}

    .forgot-password a {
        color: #3498db;
        text-decoration: none;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.signup-link {
    text-align: center;
    margin-top: 15px;
}

    .signup-link a {
        color: #3498db;
        text-decoration: none;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

@media (max-width: 480px) {
    .login-box {
        padding: 20px;
    }
}
