body {
    font-family: 'Roboto', sans-serif;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to bottom, #FFFFFF, #F8F6F1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 60px;
    border-bottom: 1px solid #C4B7A6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 80px;
    height: 80px;
    padding-left: 20px;
}

.contact-us {
    color: #2E2E2E;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding-right: 60px;
    transition: color 0.3s ease;
}

.contact-us:hover {
    color: #046A38;
}

.signup-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
    max-width: 1100px;
}

.signup-container {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(4, 106, 56, 0.1);
    border: 1px solid #C4B7A6;
    text-align: center;
    width: 460px;
}

.google-btn {
    color: #2E2E2E !important;
    border: 1px solid #C4B7A6;
    background-color: #FFFFFF;
    text-decoration: none !important;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.google-btn span {
    text-decoration: none !important;
    color: #2E2E2E;
}

.google-btn:hover {
    background: linear-gradient(to right, #046A38, #05814a);
    border-color: #046A38;
    color: #FFFFFF !important;
    box-shadow: 0 2px 8px rgba(4, 106, 56, 0.2);
}

.google-btn:hover span {
    color: #FFFFFF;
}

.google-btn::before {
    content: none;
}

.google-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #046A38;
    letter-spacing: 0.5px;
}

.or-separator {
    font-size: 14px;
    color: #2E2E2E;
    margin: 15px 0;
    position: relative;
    font-weight: 300;
}

.or-separator::before,
.or-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #C4B7A6;
}

.or-separator::before {
    left: 0;
}

.or-separator::after {
    right: 0;
}

.instruction {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #2E2E2E;
}

.sub-instruction {
    font-size: 12px;
    font-weight: 300;
    color: #2E2E2E;
    margin-bottom: 15px;
}

.form-container {
    margin-top: 15px;
}

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

.name-group {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.name-field {
    flex: 1;
    position: relative;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #C4B7A6;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 300;
    box-sizing: border-box;
    color: #2E2E2E;
    background-color: #F8F6F1;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #046A38;
    outline: none;
    box-shadow: 0 0 8px rgba(4, 106, 56, 0.2);
    background-color: #FFFFFF;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    font-weight: 300;
    text-align: left;
    position: absolute;
    top: -15px;
    left: 0;
    visibility: hidden;
}

.form-group.invalid .error-message {
    visibility: visible;
}

.form-group.invalid input {
    border-color: #dc3545;
}

.continue-btn {
    background: linear-gradient(to right, #046A38, #05814a);
    color: #FFFFFF;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.continue-btn:hover {
    background: linear-gradient(to right, #B3A580, #c0b28f);
    box-shadow: 0 2px 8px rgba(179, 165, 128, 0.3);
}

.create-account {
    font-size: 12px;
    font-weight: 300;
    color: #2E2E2E;
    margin-top: 15px;
}

.create-account a {
    color: #046A38;
    text-decoration: none;
    font-weight: 400;
}

.create-account a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-links a {
    color: #2E2E2E;
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #046A38;
}

.icons {
    display: flex;
    align-items: center;
}

.icon {
    width: 425px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(4, 106, 56, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: rotate(0deg);
    box-shadow: 0 6px 24px rgba(4, 106, 56, 0.2);
}

.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 106, 56, 0.5);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

.spinner {
    border: 4px solid #FFFFFF;
    border-top: 4px solid #046A38;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.loader p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    margin-top: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
    .signup-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .icon {
        width: 320px;
    }
    .signup-container {
        width: 360px;
    }
}