/* General Styles */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
.header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    background-image: linear-gradient(315deg, #26EF45 0%, #4AC9F7 30%, #824CEC 70.5%) !important;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #824DEB;
}

.cta-buttons .btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.hero .btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.primary-btn {
    background-color: #824DEB;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.primary-btn:hover {
    background-color: #763ee7;
}

.login-btn {
    background: transparent;
    color: #824DEB;
    border: 1px solid #824DEB;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    flex-direction: column;
}

.hero-content {
    max-width: 1000px;
    justify-items: center;
    display: flex;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: #333;
}

.hero-content h1 span {
    background-image: linear-gradient(315deg, #26EF45 0%, #4AC9F7 30%, #824CEC 70.5%) !important;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-image {
    padding-top: 2rem;
}

.hero-image img {
    max-width: 62.5rem;
    height: auto;
    border: 2px solid #0F172A;
    filter: drop-shadow(12px 12px 0px #0F172A);
    border-radius: 20px;
}

.hero .btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: block;
    font-size: 1.2rem;
    border-radius: 50px;
    width: 250px;
    text-align: center;
    align-self: center;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background: #fff;
    border-top: solid 1px lightgrey;
}

.feature {
    max-width: 300px;
    text-align: center;
    align-self: center;
    display: flex;
    flex-direction: column;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

.icon-1 {
    width: 8rem;
    height: 8rem;
    padding-top: 0.75rem;
    background: rgba(130, 76, 236, .2);
    box-shadow: 14px 20px 48px rgba(25, 15, 44, 0.02);
    border-radius: 40px;
    margin-bottom: 0.75rem;
    align-self: center;
    align-content: center;
    }
    
    .icon-2 {
        width: 8rem;
        height: 8rem;
        padding-top: 0.75rem;
        background: rgba(74,201,247,.2);
        box-shadow: 14px 20px 48px rgba(25, 15, 44, 0.02);
        border-radius: 40px;
        margin-bottom: 0.75rem;
        align-self: center;
        align-content: center;
        }
    
    .icon-3 {
        width: 8rem;
        height: 8rem;
        padding-top: 0.75rem;
        background: rgba(38,239,69,.2);
        box-shadow: 14px 20px 48px rgba(25, 15, 44, 0.02);
        border-radius: 40px;
        margin-bottom: 0.75rem;
        align-self: center;
        align-content: center;
        }

/* Highlight Section */
.highlight {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(315deg, #26EF45 0%, #4AC9F7 30%, #824CEC 70.5%);
    color: white;
    justify-items: center;
    display: flex;
    flex-direction: column;
}

.highlight h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0px 2px 3px rgb(64 64 64 / 50%);
}

.highlight p {
    margin-bottom: 20px;
}

.highlight .primary-btn {
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    display: block;
    width: 250px;
    align-self: center;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.testimonial {
    max-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

@media (max-width: 767px) {

    .nav-links {
        display: none;
    }
    
    .login-btn {
        display: none;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
        line-height: 1.1;
    }
    
    
    .features {
        flex-direction: column;
        gap: 2rem;
    }

    .feature {
        display: flex;
        align-self: center;
        flex-direction: column;
    }
    
    .hero-image img {
        max-width: 24rem;
        margin-right: 0.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    /* Sign up page */

    .main-signup {
        height: 100% !important;
    }
    
    .container {
    align-self: baseline;
    width: 100%;
    }

    .signup-card {
     height: 100%;
     box-shadow: none;
    }

    .signup-form {
    padding-bottom: 20px;
    }

    }

/* Functions

#login-google {
}

*/


/* Sign up page */

.main-signup {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 83vh;
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.signup-card {
    background: white;
    padding: 40px;
    text-align: center;
    width: 100%;
}

.brand {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.google-login img {
    width: 20px;
    height: 20px;
}

.google-login:hover {
    background: #f0f0f0;
}

.divider {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    position: relative;
    margin: 10px 0;
}

.divider:before,
.divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.divider:before {
    left: 0;
}

.divider:after {
    right: 0;
}

.input-group {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #555;
}

.input-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #824CEC;
}

.primary-button {
    background: #824CEC;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.primary-button:hover {
    background: #5a00c0;
}

.subtext {
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 10px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.forgot-password {
    font-size: 0.9rem;
    color: #824CEC;
    text-decoration: none;
    margin-top: 10px;
}

.forgot-password:hover {
    text-decoration: underline;
}