* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Onest', sans-serif;
}

body {
    display: flex;
    min-height: 100vh;
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 70px;
}

.err-msg {
    color: red;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.logo-container {
    margin-bottom: 60px; /* Space for logo */
}

.logo {
    max-height: 40px; /* Adjust based on your logo size */
    width: auto;
}

.signup-container {
    margin-left: 50px; /* Adjust this margin for larger screens */
    max-width: 460px;
}

.right-section {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.blue-texture-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
}

h1 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

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

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
    color: #999;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.checkbox-container a {
    color: #333;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-container label {
    margin: 0;
    font-size: 14px;
}

.signup-button {
    width: 100%;
    padding: 12px;
    background-color: #003545;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.signup-button:hover {
    background-color: #002835;
}

.divider {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.google-button {
    width: 100%;
    padding: 0.75rem;
    background-color: white;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: black;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.google-button:hover {
    background-color: #f5f5f5;
}

.google-icon {
    width: 40px;
}

.google-text {
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.login-link {
    text-align: center;
    font-size: 14px;
}

.login-link a {
    color: #64CCC5;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .right-section {
        display: none; 
    }

    .left-section {
        padding-left: 20px; 
        padding-right: 20px; 
    }

    .signup-container {
        margin-left: 0; 
        margin-right: 0; 
    }
}