.login-page-bg {
    background-color: #e9ecef;
}

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #e9ecef;
    z-index: 1000;
}

.login-card {
    background: linear-gradient(135deg, #4c9141 0%, #2f6927 100%);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    width: 100%;
    max-width: 550px;
    padding: 40px 50px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.login-title {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.login-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.form-group-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.form-label-custom {
    width: 130px;
    text-align: right;
    margin-right: 15px;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.form-control-custom {
    flex: 1;
    border: 1px solid #1a3d15;
    border-radius: 0;
    padding: 10px 12px;
    font-size: 16px;
    color: #333;
    background-color: white;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

    .form-control-custom:focus {
        outline: none;
        box-shadow: 0 0 5px rgba(255,255,255,0.8), inset 0 2px 4px rgba(0,0,0,0.1);
    }

.btn-acceder {
    background: linear-gradient(180deg, #6eba60 0%, #448939 100%);
    border: 1px solid #28541e;
    border-radius: 5px;
    color: white;
    padding: 10px 25px;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    margin-left: 145px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-acceder:hover {
        background: linear-gradient(180deg, #7ad06b 0%, #4b973f 100%);
        box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    }

    .btn-acceder:active {
        background: #3e7c33;
        box-shadow: inset 0 3px 5px rgba(0,0,0,0.3);
        transform: translateY(2px);
    }

.language-selector {
    position: relative;
}
