/* Stylesheet for auth pages */

/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Auth wrapper styles */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form styles */
.form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: #121212;
    box-shadow: 0 0 0 0.2rem rgba(147, 189, 99, 0.25);
}

/* Button styles */
.btn-primary {
    background-color: #121212;
    border-color: #121212;
}

.btn-primary:hover {
    background-color: #7da752;
    border-color: #7da752;
}

/* Link styles */
a {
    color: #121212;
}

a:hover {
    color: #7da752;
    text-decoration: none;
}

/* Custom styles for auth pages */
.auth-card {
    border-radius: 8px;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
}