/* You can link this CSS or add inside <style> tags */

body {
    background-color: #f5f7fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    background-color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333333;
}

form p {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

form p label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

form p input {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

form p input:focus {
    border-color: #34393d;
}

button[type="submit"] {
    background-color: #34393d;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #747474;
}
