/* Full Page Styling */
body {
    background-color: #f8f9fa;
}

/* Form Container */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Logo */
.logo {
    width: 150px;
    margin-bottom: 10px;
}

/* Title & Subtitle */
.title {
    font-size: 28px;
    font-weight: bold;
    color: #7D0C0C;
    text-align: center;
}

.subtitle {
    font-size: 14px;
    text-align: center;
    color: #666;
}

/* Input Fields */
.form-control {
    height: 45px;
    font-size: 16px;
    border-radius: 5px;
}

/* Checkbox Label */
.form-check-label {
    font-size: 13px;
    color: #333;
}

/* Sign Up Button */
.btn-primary {
    background-color: #7D0C0C;
    border: none;
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #5A0A0A;
}

/* Google Sign-up Button */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 10px;
}

.google-btn img {
    width: 20px;
}

/* Login Link */
.login-link {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

.login-link a {
    color: #7D0C0C;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Image Section */
.image-section {
    background-color: #7D0C0C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .image-section {
        display: none;
    }
    .form-section {
        width: 100%;
    }
}
