/* style.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

h1 {
    font-size: 32px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 500;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    color: #333;
}

.input-group input:focus {
    border-color: #666;
}

/* Password Wrapper for the "Show" button */
.password-wrapper {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.password-wrapper input {
    border: none;
    flex-grow: 1;
    border-radius: 0;
}

.toggle-btn {
    background-color: #fff;
    border: none;
    border-left: 1px solid #ccc;
    padding: 0 20px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    font-weight: 500;
}

.toggle-btn:hover {
    background-color: #f9f9f9;
}

/* Login Button */
.login-btn {
    width: 100%;
    background-color: #eb4969; /* Matches the pinkish-red from image */
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.login-btn:hover {
    background-color: #d43d5b;
}

/* Footer Links */
.forgot-link {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}

.instruction-text {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

/* Error Message Styling */
.error-message {
    color: #d43d5b;
    background-color: #fce4e4;
    border: 1px solid #fcc2c3;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}