body {
    background: linear-gradient(to right, #f0f4f8, #d9e3e8);
    font-family: 'Arial', sans-serif;
}

#auth {
    margin-top: 5%;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 40px;
}

.text-center img {
    width: 80px;
}

h3 {
    color: #08A880; /* Brand color */
    margin-bottom: 20px;
}

.form-group label {
    color: #08A880; /* Brand color */
    font-weight: bold;
}

.form-control {
    border: 1px solid #08A880; /* Brand color */
    border-radius: 10px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #06A06B; /* Slightly darker shade for focus */
    box-shadow: 0 0 5px rgba(6, 160, 107, 0.5);
}

.form-control-icon {
    position: absolute;
    left: 10px;
    top: 12px;
    color: #08A880; /* Brand color */
}

.btn-primary {
    background: #08A880; /* Brand color */
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #06A06B; /* Slightly darker shade on hover */
}

a {
    color: #08A880; /* Brand color */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #06A06B; /* Slightly darker shade on hover */
}

.checkbox {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px !important;
}