@font-face {
    font-family: "FsMagistral";
    src: url("../../fonts/fsMagistral.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.fsFont {
    font-family: "FsMagistral";
}

#loginGroup { 
    min-width: 100%; 
    background: rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    #loginGroup { 
        min-width: 450px; 
        max-width: 540px;
    }
}

.login-header-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    min-width: 450px;
    max-width: 540px;
    display: flex; 
    flex-direction: column;
    padding: 46px 50px;
    background-color: white !important;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.login-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.login-header-title {
    font-weight: bold;
    color: #EE0033;
    font-size: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.login-input-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
}

.login-input-title {
    font-weight: bold;
    font-size: 16px;
}

.login-input-input {
    position: relative;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #B5B4B4;
    gap: 10px;
    font-size: 16px;
}

.login-input-input-field {
    width: 100%;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
}

.login-input-input-icon {
    position: fixed;
    left: 10px;
    top: 1/2;
}

.login-util {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.login-util-change-pass {
    cursor: pointer;
    font-size: 16px;
}

.login-util-remember-pass {
    display: flex; 
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.login-util-remember-pass > input, label {
    cursor: pointer;
}

.login-button {
    width: 100%;
    background-color: #EE0033;
    color: white;
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.login-language {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-footer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 28px;
    font-size: 14px;
}

/* .login-footer-email {
    display: flex;
    justify-content: flex-start;
} */

.login-footer-support {
    display: flex; 
    justify-content: center;
}

.login-footer-price-table {
    display: flex;
    justify-content: flex-end;
}

.login-span {
    color: #EE0033;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    font-weight: 550;
}

#rememberPass {
    margin: 0px 8px 0px 0px;
}

#rememberPassLabel {
    margin: 0px;
    font-weight: normal;
}

.changePrice-container {
    background-color: white;
    border: 1px solid #e60000;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    position: absolute;
    top: -60px;
    right: 0%;
    box-shadow: 0 25px 30px -13px rgba(40, 40, 40, 0.4);
    border-radius: 10px;
    font-size: 14px;
    animation: glow 1s infinite alternate;
}

.hover-text {
    transition: transform 0.2s ease, font-size 0.2s ease;
    cursor: pointer;
}

.hover-text:hover {
    transform: scale(1.01);
}

@keyframes glow {
    from {
      box-shadow: 0 0 2px -2px #e60000;
    }
    to {
      box-shadow: 0 0 2px 2px #e60000;
    }
}
