body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('sidewalk2.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.register-box {
    background-color: #003366; 
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    color: white;
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 2.5em;
    font-style: italic;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: white;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.login-btn {
    width: 120px;
    padding: 12px;
    background-color: white;
    border: none;
    border-radius: 25px;
    color: #003366; 
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    margin: 30px auto 0;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #f0f0f0;
}

.back-to-login-btn {
    width: 120px;
    padding: 12px;
    background-color: white;
    border: none;
    border-radius: 25px;
    color: #003366; 
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    margin: 20px auto 0;
    transition: background-color 0.3s;
}

.back-to-login-btn:hover {
    background-color: #f0f0f0;
}

a {
    text-decoration: none;
    display: block;
    text-align: center;
}
