body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #F0F4F8;
    color: #001A26;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.registration-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}

.logo-container {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #47606C;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px; /* Adjusted to ensure circular shape */
    height: 170px; /* Adjusted to ensure circular shape */
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.registration-page h2 {
    color: #4A636F;
    margin-bottom: 30px;
}

.registration-page form {
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.registration-page label {
    align-self: flex-start;
    margin-bottom: 5px;
    color: #001A26;
    max-width: 350px;
}

.registration-page input {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    background-color: #FFF;
    color: #000;
}

.registration-page button {
    padding: 15px 25px;
    background-color: #7CDDDE;
    color: #011A28;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
    width: 80%;
}

.registration-page button:hover {
    background-color: #2FA3B3;
}