@font-face {
    font-family: 'Poppins-Regular';
    src: url('../../login/fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../../login/fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../../login/fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../../login/fonts/poppins/Poppins-SemiBold.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Poppins-Regular', sans-serif;
    background-color: #f8f9fa;
    color: #221f1e;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom right, #efe6ff, #d4c2ff);
}

/* Container Styles */
.sign-in-wrapper {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.sign-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Text Styles */
.text-left h3 {
    font-family: 'Poppins-SemiBold', sans-serif;
    color: #221f1e;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.text-left p {
    color: #707c5b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.password-reset-form h4 {
    font-family: 'Poppins-Medium', sans-serif;
    color: #221f1e;
    margin-bottom: 1.5rem;
}

.copyright-txt {
    margin-top: 2rem;
    color: #707c5b;
    font-size: 0.8rem;
}

/* Form Styles */
.sign-in-form,
.password-reset-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins-Regular', sans-serif;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #89c833;
    box-shadow: 0 0 0 0.2rem rgba(137, 200, 51, 0.25);
    outline: none;
}

/* Button Styles */
.btn {
    font-family: 'Poppins-Medium', sans-serif;
    padding: 0.75rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: #89c833;
    color: white;
}

.btn-primary:hover {
    background-color: #a7d369;
}

.btn-success {
    background-color: #800ca3;
    color: white;
}

.btn-success:hover {
    background-color: #a7d369;
}

.btn-info {
    background-color: #707c5b;
    color: white;
}

.btn-info:hover {
    background-color: #5a6450;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Link Styles */
a {
    color: #89c833;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #707c5b;
    text-decoration: underline;
}

.text-white {
    color: white !important;
}

.text-white:hover {
    color: #cee5ae !important;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .sign-container {
        padding: 1.5rem;
    }

    .sign-in-wrapper {
        padding: 1rem;
    }
}