/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand';
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    font-family: 'Quicksand';
}

.wrapper {
    width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.input-box {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.input-box input {
    width: 100%;
    padding: 10px;
    padding-left: 40px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.input-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.btn {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    background: #667eea;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #5644a4;
}

p {
    margin-top: 15px;
    font-size: 14px;
}

p a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}

/* Toggle Forms */
.hidden {
    display: none;
}
.form-heading {
    text-align: center;
    color: white;
    font-size: 44px;
    margin-bottom: 20px;
    width: 100%;
    position: absolute;
    top: 10%;
    font-weight: 200;
         letter-spacing: 2px;
         left: 0px;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width:100%
}
@media (max-width: 767px) {
    .form-heading {
        font-size: 24px;
        top: 5%;
    }

    .wrapper {
        width: 85%;
        padding: 20px;
    }

    .input-box input {
        font-size: 14px;
        padding: 8px;
        padding-left: 35px;
    }

    .input-box i {
        left: 8px;
    }

    .btn {
        font-size: 16px;
        padding: 8px;
    }

    p {
        font-size: 12px;
    }
}
