﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.register-container {
    width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.logo {
    text-align: center; /* Center the logo */
    margin-bottom: 20px; /* Add space between logo and heading */
}

.logo-img {
    width: 200px; /* Adjust size of the logo */
    height: auto; /* Maintain aspect ratio */
}

.form-field {
    margin-bottom: 20px;
}

    .form-field label {
        display: block;
        font-size: 14px;
        margin-bottom: 5px;
        color: #333;
    }

    .form-field input {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

.buttons {
    display: flex;
    justify-content: space-between;
}

    .buttons .back-btn, .buttons .submit-btn {
        padding: 10px 20px;
        border: none;
        background-color: #b13446;
        color: white;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
    }

        .buttons .back-btn:hover, .buttons .submit-btn:hover {
            background-color: #45a049;
        }
/*/// login (4getpassword/register)/////////*/

.extra-links {
    text-align: center;
    margin-top: 15px;
}

.extra-links a {
    text-decoration: none;
    color: #b13446;
    margin-right: 20px;
}

    .extra-links a:last-child {
        margin-right: 0;
    }

    .extra-links a:hover {
        color: #45a049;
    }