/* Reset CSS */
@import url('https://fonts.googleapis.com/css?family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

/* Global reset and base styles */
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
}

/* Body styles */
body {
    background-color: rgb(250, 243, 243);
    background-image: url(Images/signup.jpg); /* Background image */
    background-size: cover; /* Cover the entire background */
    background-position: center; /* Center the background image */
}

/* Root HTML styles */
html {
    font-size: 95.5%; /* Base font size */
    overflow-x: hidden; /* Hide horizontal overflow */
    scroll-padding-top: 9rem; /* Space for fixed headers */
    scroll-behavior: smooth; /* Smooth scrolling behavior */
}

/* Custom scrollbar styles */
html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5rem;
}

/* Banner section styles */
.banner {
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-size: cover; /* Cover the entire banner */
    background-position: center; /* Center the background */
}

/* Navigation bar styles */
.navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Icon styles */
.icon img {
    float: left;
    background-color: rgba(8, 4, 0, 0.8);
    border-radius: 50%;
}

/* Logo styles */
.logo {
    color: white;
    font-size: 30px;
    font-family: 'Caveat', cursive;
    padding-left: 10px;
    float: left;
    padding-top: 10px;
}

/* Navigation list styles */
.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

/* Navigation link styles */
.navbar ul li a {
    color: rgb(238, 230, 230);
    text-transform: uppercase;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
}

/* Navigation link hover effect */
.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0%;
    background: rgb(250, 249, 249);
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after {
    width: 100%;
}

/* Signup form container styles */
.sign-up-form {
    width: 400px; /* Increased width */
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3); /* Box shadow */
    background:white; /* White background */
    padding: 30px; /* Increased padding */
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center horizontally and vertically */
    text-align: center;
    border-radius: 20%;
    backdrop-filter: blur(10px); /* Blur effect for backdrop */
    -webkit-backdrop-filter: blur(10px);
    opacity: 0.9; /* Opacity */
}

/* Signup form title styles */
.sign-up-form h1 {
    color: rgb(1, 0, 0); /* Red color */
    margin-bottom: 30px;
}

/* Input box styles */
.input-box {
    border-radius: 20px;
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    border: 1px solid #999;
    outline: none;
}

/* Button styles */
button {
    color: white;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    font-size: 15px;
    margin: 10px 0;
    border: none;
    outline: none;
    cursor: pointer;
}

/* Signup button styles */
.signup-btn {
    background-color: aqua;
}

.signup-btn:hover {
            background-color: #902d1c; 
        }
.sign-up-btn{
    background-color: aqua;
}
.sign-up-btn:hover{
    background-color: #902d1c;
}

/* Anchor tag styles */
a {
    text-decoration: none;
}

/* Horizontal rule styles */
hr {
    margin-top: 20px;
    width: 80%;
}

/* "Or" text styles */
.or {
    background: transparent;
    width: 30px;
    margin: -19px auto 10px;
    color: black;
}

/* Image styles */
img {
    width: 80px; /* Adjust size as needed */
    border-radius: 100%; /* Makes the image circular */
    overflow: hidden; /* Ensures the image stays within the circular boundary */
}

/* Footer styles */
.footer {
    padding: 0px;
    margin: 0;
    background-color: black; /* Black background */
    color: white; /* White text */
    backdrop-filter: blur(10px); /* Blur effect for backdrop */
    -webkit-backdrop-filter: blur(10px);
    opacity: 0.9; /* Opacity */
}

/* Footer container styles */
.footer-container {
    width: 100%;
    padding: 60px 30px 20px;
}

/* Footer logo styles */
.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

/* Footer links styles */
.footer-links {
    margin: 30px 0;
    text-align: center;
}

.footer-links h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Footer links list styles */
.footer-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style-type: none;
}

.footer-links ul li {
    margin: 10px;
}

/* Footer links anchor styles */
.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.9;
    transition: 0.5s;
}

/* Footer links anchor hover effect */
.footer-links ul li a:hover {
    background-color: rgba(8, 4, 0, 0.8);
    transition: 0.5s;
}

/* Social icons container styles */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Social icon anchor styles */
.social-icons a {
    text-decoration: none;
    padding: 10px;
    background-color: white; /* White background */
    margin: 10px;
    border-radius: 50%; /* Circular border radius */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social icon styles */
.social-icons a i {
    font-size: 2em;
    color: black;
    opacity: 0.9;
}

/* Social icon hover effect */
.social-icons a:hover {
    background-color: rgba(8, 4, 0, 0.8);
    transition: 0.5s;
}

.social-icons a:hover i {
    color: white;
    transition: 0.5s;
}

/* Media query for small screens */
@media (max-width: 700px) {
    .footer-links ul {
        flex-direction: column;
    }
    .footer-links ul li {
        width: 100%;
        text-align: center;
    }
}
