body {
    background-color: #f8f9fa;
}
.login-container,
.forgot-password-container {
    max-width: 400px;
    margin: auto;
    margin-top: 80px;
    padding: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.container-height{
    min-height: 70vh;
}
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #757575;
    border: 1px solid #ddd;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.google-btn i {
    font-size: 20px;
    color: #db4437;
}

.google-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.login-farm,
.forgot-password-farm{
    margin-top: 30px;
}
.form-control {
    border-radius: 30px;
}
.btn-primary {
    border-radius: 30px;
}
.divider {
    text-align: center;
    margin: 15px 0;
    font-weight: bold;
    color: #6c757d;
}
.divider::before, .divider::after {
    content: "";
    display: inline-block;
    width: 45%;
    border-top: 1px solid #ced4da;
    margin: 0 10px;
    vertical-align: middle;
}
h3 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #343a40;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-left: 10px;
}