* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #E7E7E7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 1260px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.login_div {
    width: 100%;
    height: 650px;
    position: relative;
    background: url("../../assets/images/login_bg_2.png") no-repeat center center/cover;
    background-color: #fff;
    border-radius: 20px;
}

.powered-box {
    position: absolute;
    top: 114px;
    left: 0px;
}

.powered-box span {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}


/* Right section */
.right {
    position: absolute;
    right: 70px;
    bottom: 0;
}

.login-box {
    border-radius: 24px 24px 0 0;
    width: 456px;
    background-color: #fff;
    height: 100%;
    padding: 60px 48px;
}

.logo {
    height: 147px;
    margin-bottom: 20px;
}

.login_title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    line-height: 28px;
    margin-bottom: 24px;
}

form label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.3;
}

form input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 0.5px solid #E5E5E5;
    font-size: 14px;
    color: #111827;
    background: #F2F2F2;
    outline: none;
    transition: all 0.2s ease;
}
.field{
    margin-bottom: 16px;
}

form input:focus {
    border-color: #2563eb;
}

.password-field {
    position: relative;
}


.form_btn {
    width: 100%;
    background: #007AFF;
    color: white;
    border: none;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    line-height: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}
.text-error li{
    color: red;
    font-size: 12px;
    list-style: none;
    margin-top: 5px;
}