body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.signup-container {
    display: flex;
    max-width: 900px;
    width: 90%;
    background: rgb(255, 255, 255);
    box-shadow:  0 0 40px rgb(0, 0, 0);
    border-radius: 10px;
    overflow: hidden;
    justify-items: center;
}

.logo-header{
    max-width: 250px;
}
.form-section {
    padding: 30px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000000;
    text-align: center;
    
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: #f9f9f9;
}

.btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.primary-btn {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    box-shadow:  0 0 20px rgb(0, 0, 0);
    font-weight: bold;
}

.primary-btn:hover {
    background-color: #e6e7e7;
}

.forgot-password-link {
    text-decoration: none;
    color: #007bff;
}

.forgot-password-link:hover {
    text-decoration: underline;
}


.google-btn {
    display: flex;
    align-items: center;
    justify-content: center; 
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    box-shadow: 0 0 10px rgb(0, 0, 0);
    font-weight: bold;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    border-image-slice: 1;
    text-align: center;
    gap: 8px; 
    padding: 4px;
}

.google-img {
    max-width: 30px;
    height: auto; 
}

.google-btn:hover {
    background-color: #e6e7e7;
}

.or-separator {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    color: #999;
}

.signin-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.signin-link a {
    color: #4CA858;
    text-decoration: none;
}

.signin-link a:hover {
    text-decoration: underline;
}

.image-section {
    
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
}

.image-section img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 30px 0 0 30px;
}
.error-message{
    color: red;
}