﻿.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.signup-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.signup-form, .signup-image {
    flex: 1;
    margin: 10px;
}

.signup-form {
    max-width: 450px;
}

    .signup-form img {
        max-width: 150px;
        margin-bottom: 20px;
    }

.form-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

    .form-group label {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 10px;
        color: #555;
    }

    .form-group input {
        width: 100%;
        padding: 10px 10px 10px 40px;
        border: 1px solid #ccc;
        border-radius: 25px; /* Rounded edges */
        box-sizing: border-box;
    }

.form-button {
    text-align: center;
    margin-top: 20px;
}

.form-submit {
    background-color: #0633f9;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    border-radius: 25px; /* Rounded edges */
}

    .form-submit:hover {
        background-color: #052dbf;
    }

.spinner-border {
    display: none;
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
    color: #0633f9;
}

.signup-image img {
    max-width: 100%;
    height: auto;
}

.signup-image-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #0633f9;
    text-decoration: none;
}

    .signup-image-link:hover {
        text-decoration: underline;
    }
