/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
  

body {
    background: url('images/istockphoto-1332656140-640x640.jpg') no-repeat center center/cover;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    height: 100vh;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Login Container */
.login-container {
    background-color: #f7dbdb;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 320px;
}

/* Headings */
h2 {
    margin-bottom: 15px;
    color: black;
}

/* Input Group */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: black;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid (0 80% 20%);
    border-radius: 5px;
    font-size: 14px;
}

/* Password Wrapper */
.password-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

#togglePassword {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

/* Button */
button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #0056b3;
}

/* Error Message */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

/* Sign Up Link */
p {
    margin-top: 15px;
    font-size: 14px;
}

p a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}
