* {
    font-family: Roboto, sans-serif;
    color: #c7c7c7;
    font-size: 14px;
    font-weight: 400;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #e7e7e7;
    background-image: url("background-v2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
  
.container .content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    width: 80%;
    margin: 0 auto;
    margin-top: -400px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.2);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container .content img.logo {
    position: relative;
    margin: 0 auto;
    width: 200px;
    display: block;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.container .content select,
.container .content input[type='text'] {
    width: 100%;
    box-sizing: border-box !important;
    border: 2px solid #e0e0e0;
    background-color: #f8f9fa;
    position: relative;
    margin-bottom: 16px;
    border-radius: 10px;
    padding: 14px 16px;
    color: #000000;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.container .content select:hover,
.container .content input[type='text']:hover {
    border-color: #ec6608;
    background-color: #ffffff;
}

.container .content select:focus,
.container .content input[type='text']:focus {
    border-color: #ec6608;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(236, 102, 8, 0.1);
    transform: translateY(-2px);
}

.container .content select {
    cursor: pointer;
}

.container .content select option {
    color: #000000;
}

.container .content a#domainSubmit {
    width: 100%;
    background: linear-gradient(135deg, #ec6608 0%, #d45507 100%);
    border: none !important;
    color: #ffffff;
    cursor: pointer;
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 102, 8, 0.3);
    position: relative;
    overflow: hidden;
}

.container .content a#domainSubmit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.container .content a#domainSubmit:hover::before {
    left: 100%;
}

.container .content a#domainSubmit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 102, 8, 0.4);
    background: linear-gradient(135deg, #ff7619 0%, #ec6608 100%);
}

.container .content a#domainSubmit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(236, 102, 8, 0.3);
}

.container .content .g-recaptcha {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.container .content .g-recaptcha:hover {
    transform: scale(1.02);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    color: #c7c7c7;
    padding: 20px;
    text-align: center;
}

@media only screen and (max-width: 1200px) {
    .container .content {
        width: 80%; /* Increase width slightly for better use of space on larger screens */
    }

    .container .content img.logo {
        width: 180px; /* Maintain logo size as slightly smaller */
    }
}

@media only screen and (max-width: 992px) {
    .container {
        padding: 25px; /* Increase padding to enhance space around the content */
    }

    .container .content {
        width: 85%; /* Maintain adjusted width for tablets */
    }

    .container .content img.logo {
        width: 160px; /* Maintain adjusted logo size for better fit */
    }
}

@media only screen and (max-width: 768px) {
    .container .content {
        width: 90%; /* Increase width to use more space on smaller tablets */
    }

    .container .content img.logo {
        width: 140px; /* Further reduce logo size */
    }

    .container .content input[type='text'], 
    .container .content a#domainSubmit {
        font-size: 14px; /* Adjust font size for readability */
    }
}

@media only screen and (max-width: 600px) {
    .container .content {
        width: 95%; /* Increase content width for better visibility */
    }

    .container .content img.logo {
        width: 150px; /* Maintain larger logo for better visibility */
    }

    .container .content input[type='text'], 
    .container .content a#domainSubmit {
        font-size: 14px; /* Increase font size for easier interaction */
    }
}

@media only screen and (max-width: 576px) {
    .container .content {
        width: 98%; /* Utilize almost the entire screen width */
        padding: 20px; /* Increase padding to maintain visual comfort */
    }

    .container .content img.logo {
        width: 120px; /* Maintain smallest logo size for small screens */
    }

    .container .content input[type='text'], 
    .container .content a#domainSubmit {
        padding: 10px; /* Increase padding for easier interaction */
        font-size: 14px; /* Maintain larger font size for better readability */
    }
    
}