/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Authentication Container */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.auth-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.auth-form h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #FF8C44;
}

/* Input Group */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.input-group input:focus {
    border-color: #FF8C44;
    outline: none;
}

/* Button */
.btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background-color: #FF8C44;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background-color: #FF4D00;
}

/* Links */
p {
    text-align: center;
    font-size: 16px;
    color: #555;
}

p a {
    color: #FF8C44;
    text-decoration: none;
}

p a:hover {
    color: #FF4D00;
}

/* Media Queries */
@media (max-width: 768px) {
    .auth-form {
        padding: 20px;
        width: 80%;
    }

    .auth-form h2 {
        font-size: 28px;
    }

    .input-group input {
        font-size: 14px;
    }

    .btn {
        font-size: 16px;
    }
}
