
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f4f4f4;
    flex-direction: column;
}
.alert {
    width: 200px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #ffffff;
    background-color: #789345;
    border-color: #f5c6cb;
}

.recaptcha-form {
    margin-top: 55px;
    border-radius: 25px;
}
.login-card {
    background: #D6FA19;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    min-height: 50vh;
    min-width: 400px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-card{
    width: 300px;
}
.login-card img {
    width: 150px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.login-card h2 {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 20px;
    color: #5A5A5A;
    
}
.login-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.login-card input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.login-card button {
    background: #5A5A5A;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.login-card button:hover {
    background: #D6FA19;
    color: #5A5A5A;
    border-width: 1px;
    border-style: solid;
}
.password-container {
    position: relative;
    width: 100%;
}

.toggle-container {
    display: flex;
    align-items: center;
    margin-top: 10px; 
}

.remember-me {
    display: none;
}

.toggle-label {
    position: relative;
    cursor: pointer;
    padding-left: 45px;
    font-size: 14px;
    color: #5A5A5A; 
}

.toggle-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 15px; 
    background-color: #C5C5C5;
    border-radius: 15px;
    transition: background-color 0.3s;
}

.remember-me:checked + .toggle-label:before {
    background-color: #5A5A5A; 
}

.toggle-label:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px; 
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.remember-me:checked + .toggle-label:after {
    transform: translate(15px, -50%);
}

.password-container input {
    padding-right: 40px;
}
.password-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #333;
}
.footer {
    width: 100%;
    background: #5A5A5A;
    color: #B8B8B8;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Copyright {
    text-align: left;
}
.Footer-Icon {
    display: flex;
    gap: 20px;
}
.Footer-Icon div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.Footer-Icon i {
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
}
.footr p {
    padding-top: 100px;
}

@media (max-width: 500px) {
    .login-card {
            padding: 20px;
            width: 50%;
            max-width: 100px;
    }
    
}