/* style.css */
body {
    background-color: #333;
    color: white;
    font-family: Arial, sans-serif;
}

.form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #444;
    border-radius: 8px;
        width: 77%;
        
}

input[type="text"], input[type="password"], button {
    width: 77%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #555;
    border-radius: 5px;
}

button {
    background-color: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #005bb5;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #222;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    color: white;
}

.navbar a {
    color: white;
    text-decoration: none;
}

header {
    text-align: center;
    padding: 50px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

footer button {
    background-color: #444;
    color: white;
    border: none;
    cursor: pointer;
}

footer button:hover {
    background-color: #555;
}

.action-btn {
    width: 100%;
    margin: 20px 0;
    padding: 15px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.action-btn:hover {
    background-color: #005bb5;
}
