/* style.css */

body {
    font-family: 'Arial', sans-serif;
    background-color: #1e1e2e;
    color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
}

.container {
    background-color: #282a36;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
}

h1 {
    text-align: center;
    color: #50fa7b;
    font-size: 24px;
    margin-bottom: 30px;
}

label {
    font-size: 14px;
    color: #f8f8f2;
    display: block;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #44475a;
    border-radius: 5px;
    background-color: #44475a;
    color: #f8f8f2;
    font-size: 14px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #50fa7b;
    border: none;
    border-radius: 5px;
    color: #282a36;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45e16a;
}

p {
    text-align: center;
    color: #bd93f9;
    margin-top: 20px;
}

a {
    color: #8be9fd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
