@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    scroll-behavior: smooth;
    background-color: #F5F7FB;
}

h1, h2, h3, h4, h4, h5 {
    font-family: "Oswald", sans-serif;   
}

p, span, a, li, td, th, label, select, radio, input, button {
   font-family: "Inter", sans-serif;    
}

/*Header*/
header {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 60px;
}
header #headermain {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: auto;
}
header #logo img {
    max-width: 100%;
    height: auto;
}
header #navigation {    
    justify-content: end;
    display: flex;
    gap: 18px;
}
header #navigation a {
    color: #333;
    font-size: 17px;
    text-decoration: none;
}
header #navigation a:hover {
    opacity: 0.8;
}
.mobile-only {
    display: none;
}

/*Sign Up*/
.title {
    width: 40%;
    margin: auto;
    padding: 0px 20px 20px;
}
.title h1 {
    text-align: center;
    font-size: 50px;
    color: #111;
    line-height: 1.2em;  
    margin-top: 0px;
}
.title p {
    text-align: center;
    color: #222;
    font-size: 18px;
    line-height: 1.5em;    
}
.title #price {
    background-color: #fff;
    padding: 8px;
    border-radius: 10px;
    font-weight: 700;
    color: #19116F;
    text-decoration: blink;
    border: 2px dashed #19116F;
}
.userprocess {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 550px;
    margin: auto;
}
.userprocess h2 { 
    font-size: 24px; 
    margin-bottom: 8px; 
    color: #333; 
    text-align: center;
    line-height: 1.2em;    
}
.userprocess p { 
    color: #666; 
    margin-bottom: 30px; 
    font-size: 17px; 
    text-align: center;
}
.input-group {
    margin: 20px 15px;
    text-align: left;
}
.input-group label {
    display: block; 
    margin-bottom: 6px;
    font-size: 15px; 
    font-weight: 600;
    color: #444; 
    line-height: 1.5em;    
}
.input-group input {
    width: 100%; 
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px; 
    font-size: 15px; 
    box-sizing: border-box; 
    outline: none; 
    transition: border 0.3s;
}
.input-group input:focus {
    border-color: #0070ba;
}
.error-msg { 
    color: #cc0000!important; 
    font-size: 13px;
    margin-bottom: 16px;
    display: none; 
    font-weight: 600;
    line-height: 1.5em;
}
#paypal-button-container { 
    display: none; 
    margin-top: 20px;
}
#validate-btn, #login-btn {
    width: 100%; 
    padding: 12px; 
    background-color: #5733CC; 
    color: #fff; 
    border: none; 
    border-radius: 10px; 
    font-size: 17px; 
    cursor: pointer;   
    font-weight: 600;
}
#validate-btn:hover, #login-btn:hover, #signupacc:hover {
    opacity: 0.8;
}
#terms {
    font-size:11px;
    color:#666;
    line-height: 1.5em;
}
#terms a {
    color: #666;
}
#already, #forgotpassword, #signupacc {
    text-align: center;
    color: #111;
    line-height: 1.5em;
}
#already a, #forgotpassword a, #signupacc a {
    color: #5733CC;
    font-weight: 600;
}
#terms a:hover, #already a:hover, #forgotpassword a:hover {
    text-decoration: none;
}

/*Footer*/
footer {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    bottom: 0;
    position: relative;
    margin-top: 60px;
}
footer #footermain {
    width: 70%;
    display: flex;
    align-items: center;
    margin: auto;
    flex-direction: column;
}
footer p {
    font-size: 13px;
    text-align: center;
    color: #333;
}
footer a {
    color: #444;
    line-height: 1.5em;
}
footer a:hover {
    opacity: 0.8;
    text-decoration: none;
}

@media all and (max-width:900px) {
.title {
    width: 100%;
}
.title h1 {
    font-size: 36px;
    line-height: 1.2em;    
}
.title p {
    font-size: 17px;
    line-height: 2em;    
}
.userprocess {
    padding: 20px;
    width: 90%;
}
.userprocess h2 { 
    font-size: 20px; 
} 

.mobile-only {
    display: block;
    cursor: pointer;
}
#menu-icon {
    font-size: 28px;
    color: #333;
}
header #headermain {
    width: 90%;
}
header #navigation {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100vw;
    height: 100vh;
    background-color: #ffffff; 
    flex-direction: column;
    justify-content: center; 
    align-items: center;    
    gap: 30px;               
    transition: right 0.4s ease-in-out;
    z-index: 9999;
}
header #navigation.open {
    right: 0; 
}
header #navigation a {
    font-size: 22px; 
}
#close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: #333;
    line-height: 1;
}
footer #footermain {
    width: 90%;
}
}