/* Reset Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #2196F3, #1976D2);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Login Container */
.login-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 350px;
}

.logo {
            max-width: 150px; /* Adjust size */
            margin-bottom: 15px;
        }

/* Title */
h2 {
    color: #1976D2;
    margin-bottom: 20px;
}

/* Form Inputs */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.input-group input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Button */
.btn {
    background: #1976D2;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s;
}

.btn:hover {
    background: #1565C0;
}

/* Error Message */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

/* Success Alert */
.alert-success {
    background: #D1ECF1;
    color: #0C5460;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Register Link */
.register-link {
    margin-top: 15px;
    font-size: 14px;
}

.register-link a {
    color: #1976D2;
    font-weight: bold;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #2196F3, #1976D2);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Registration Container */
.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
}

/* Title */
h2 {
    color: #1976D2;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* Form Labels - Left Aligned */
.form-label {
    font-weight: bold;
    color: #333;
    display: block;  /* Ensures label takes full width */
    text-align: left; /* Aligns label text to the left */
    margin-bottom: 5px;
}

/* Form Inputs */
.form-control {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
}

/* Button */
.btn-primary {
    background: #1976D2;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1565C0;
}

/* Error & Success Messages */
.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Register Link */
.text-center a {
    color: #1976D2;
    font-weight: bold;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}