body {
    margin: 0;
    padding: 0;
    background-color: #f5d3df;
    font-family: 'Roboto', sans-serif;
    color: #3a3a3a;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.title {
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 20px;
}

.login-box {
    background-color: #fff;
    width: 450px;
    padding: 25px 20px 80px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.login-title {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    color: #f2a8be;
    margin-bottom: 15px;
    user-select: none;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 40px 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #f2a8be;
}

.input-group .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 22px;
    height: 22px;
    fill: #ccc;
    transition: fill 0.3s;
}

.input-group .toggle-password:hover {
    fill: #f2a8be;
}

.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #555;
    margin-bottom: 25px;
    justify-content: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 6px;
}

.btn-login {
    width: 100%;
    background-color: #f2a8be;
    border: none;
    padding: 12px 0;
    border-radius: 4px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

.btn-login:active {
    background-color: #e68ca6;
}

.btn-login:disabled {
    background-color: #f4cdd9;
    cursor: not-allowed;
}

.alert_err_msg {
    padding: 0 !important;
}

.error {
    border-color: #dc3545 !important;
}
