/* General styles */
body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container styling */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

/* Toast styling */
.toast {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.bg-success {
    background-color: #28a745;
}
.bg-danger {
    background-color: #dc3545;
}
.bg-warning {
    background-color: #ffc107;
}


/* Login form styling */
.login-form {
    background-color: #fff;
    width: 380px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.form-header h5 {
    font-weight: 700;
    color: #333;
}

/* Form group styling */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-group label .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Button styling */
.btn-submit {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #218838;
}

/* Footer links */
.form-footer {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    color: navy;
}

.form-footer a {
    text-decoration: none;
    color: navy;
}

.form-footer a:hover {
    text-decoration: underline;
}
