/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #ecf0f1;
}

/* Container */
.container {
    max-width: 400px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Login, Signup, Forgot Password Boxes */
.login-box, .signup-box, .forgot-password-box {
    width: 100%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Description Text */
.description {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

/* Signup Note */
.signup-note {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Input Fields */
input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Forgot Password and Signup Links */
.forgot-password, .signup-link, .login-link {
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.forgot-password:hover, .signup-link:hover, .login-link:hover {
    text-decoration: underline;
}

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

.btn:hover {
    background: #219150;
}

/* Error Message */
.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

/* Copyright Text */
.copyright {
    font-size: 10px;
    color: #777;
    text-align: center;
    margin-top: 10px;
}