* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('ocean.gif') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: rgba(255, 255, 255, 0.5); /* Add a semi-transparent white background for the content */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.form {
    text-align: center;
}

.form h2 {
    margin-bottom: 20px;
    color: #333;
}

.form input {
    width: 90%;
    margin: 10px 0;
    padding: 15px;
    border: 1   px solid #ccc;
    border-radius: 5px;
}

.form button {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.register-link, .login-link {
    text-align: center;
    margin-top: 20px;
}

.register-link a, .login-link a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.forgotpassword-link a, .login-link a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
