@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

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

.invalid-feedback {
    display: block;
}

#togglePassword {
    position: absolute;
    top: 42px;
    right: 23px;
    cursor: pointer;
}

.form-group {
    position: relative;
}

.body {
    background-image: url(../../img/login-back-ground.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-position: center center;
}

.card {
    border: none !important;
}

.card-body {
    padding: 1rem 0;
}

.card h2 {
    position: unset;
    font-size: 19px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-top: 15px;
}

.card p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.card h2::before {
    content: '';
    position: unset;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 28px;
    border-radius: 12px;
    background: #4070f4;
}

.alert {
    padding: 5px 10px !important;
}

.card-body {
    padding: 0px 0 !important;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px 40px 40px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-label {
    font-size: 14px;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 5px 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 8px rgba(78, 115, 223, 0.5);
}

.invalid-feedback {
    display: block;
    color: #e74a3b;
    font-size: 12px;
}

.captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 27px;
}

.refereshrecapcha {
    width: 120px;
    border-radius: 6px;
}

#reload:focus {
    box-shadow: none;
}

#reload {
    font-weight: bolder;
    font-size: 18px;
}

.logo {
    width: 300px;
    margin: 0 auto;
    display: flex;
}