body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    padding: 1rem;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.header .logo img {
    height: 40px;
}

.register-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 2rem;
    background-color: #f4f4f4;
    
}

.register-section h2 {
    font-weight: 600;
    font-size: 2rem;
    color: #333;
    text-align: center;
}

.register-section p {
    font-size: 1rem;
    color: #777;
    text-align: center;
    margin-bottom: 2rem;
}

.register-form {
    max-width: 500px;
    width: 100%;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 500;
    color: #555;
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.register-btn {
    width: 100%;
    padding: 0.75rem;
    background-color:hsl(227, 21%, 27%);
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.register-btn:hover {
    background-color: #00a05d;
}

.login-link {
    text-align: center;
    margin-top: 1rem;
}

.login-link a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.footer {
    padding: 1rem;
    background-color: #333;
    color: #fff;
    text-align: center;
}

