﻿
body {
    background-color: #f4f4f9; /* Light background color for the page */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

.register-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.register-left {
    background-color: #B0C4DE; /* dark navy blue */ /* A contrasting color, dark greenish */
    color: white;
    flex: 1 1 40%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    position: relative;
    z-index: 2;
}

    .register-left img {
        max-width: 80%; /* Make sure the logo is visible */
        height: auto;
        margin-bottom: 30px;
        z-index: 3;
        position: relative;
    }

    .register-left h1 {
        font-size: 36px;
        font-weight: 700;
    }

    .register-left p {
        margin-top: 10px;
        font-size: 16px;
        opacity: 0.9;
    }

.register-form {
    flex: 1 1 60%;
    padding: 40px 30px;
}

.form-floating input {
    border-radius: 12px;
}

.btn-register {
    background-color: #76974C; /* Matching button color with your image */
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
}

    .btn-register:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

.toggle-eye {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    cursor: pointer;
}

@media (max-width: 768px) {
    .register-container {
        flex-direction: column;
    }
}




