/* aut.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(160, 13, 13, 0.1);
    width: 300px;
}

.login-container h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-item {
    margin-bottom: 15px;
}

.form-item input {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit {
    background-color: #5cb85c;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.submit:hover {
    background-color: #4cae4c;
}