/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 100%;
    padding: 20px;
}

.login-box {
    background: #fff;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.logo {
    width: 80px;
    margin-bottom: 15px;
}

.login-box h2 {
    margin: 0 0 10px;
    color: #333;
    font-weight: 600;
}

.login-box p {
    color: #777;
    margin-bottom: 30px;
    font-size: 15px;
}

.login-form {
    text-align: left;
}

/* --- Input Field Styles --- */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.form-group input {
    width: 100%;
    padding: 15px 15px 15px 50px; /* Icon এর জন্য বাম দিকে জায়গা */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #9B59B6;
}

/* --- Forgot Password Link --- */
.options-container {
    text-align: right;
    margin-bottom: 25px;
    margin-top: -10px;
}

.options-container .forgot-link {
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

.options-container .forgot-link:hover {
    text-decoration: underline;
}

/* --- Button Styles --- */
.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #5D9CEC, #9B59B6);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

/* --- Footer Text --- */
.footer-text {
    margin-top: 25px;
    font-size: 14px;
    color: #888;
}

.footer-text a {
    color: #5D9CEC;
    text-decoration: none;
    font-weight: bold;
}

/* --- Error Message --- */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #f5c6cb;
}
/* --- Success Message Box Styling --- */
.success-message-box {
    padding: 20px 0;
}
.success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 15px;
}
.message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}