/* this is the maroon gradient linear-gradient(55deg, #b60808, #5B0404); */


/* main color #ffc104 */

.text-maroon {
    color: #b60808;
}

.user-name {
    font-family: "Bebas Neue";
    font-size: 40px;
}

.url {
    font-family: "Bebas Neue";
    font-size: 24px;
}

.bebas-font {
    font-family: "Bebas Neue";
    font-size: 24px;
}

.bebas-small-font {
    font-family: "Bebas Neue";
    font-size: 16px;
}

.sora-font {
    font-family: "Sora", sans-serif;
    font-size: 16px;
}

.custom-container {
    background-color: #ffc104;
    /* Change this to the desired color */
    border: none;
}

.bg-form {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.header-color {
    background-color: #ffc104 !important;
}

.custom-shape-divider-top-1699862315 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1699862315 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 114px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1699862315 .shape-fill {
    fill: #ffc104;
}

.custom-shape-divider-bottom-1699862399 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    border: none;
}

.custom-shape-divider-bottom-1699862399 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 155px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1699862399 .shape-fill {
    fill: #ffc104;
}


/* Forms */

.form {
    background-color: #fff;
    display: block;
    padding: 1rem;
    max-width: 350px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    text-align: center;
    color: #000;
}

.input-container {
    position: relative;
}

.input-container input,
.form button {
    outline: none;
    border: 1px solid #000000;
    margin: 8px 0;
    box-sizing: border-box;
    /* Include padding and border in the element's total width and height */
}

.input-container input {
    background-color: #fff;
    padding: 1rem;
    padding-right: 3rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    width: 100%;
    /* Set the width to 100% for responsiveness */
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: black;
}


/* Optional: Adjust styles for better mobile responsiveness */

@media (max-width: 767px) {
    .input-container input {
        padding: 0.75rem;
        padding-right: 2rem;
        font-size: 0.75rem;
        line-height: 1rem;
    }
}

.submit {
    display: block;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: #4f46e5;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    width: 100%;
    border-radius: 0.5rem;
    text-transform: uppercase;
}

.signup-link {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
}

.signup-link a {
    text-decoration: underline;
}


/* Button Styles */

.custom-button {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #ffae00;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
}

.custom-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

.custom-button:hover {
    color: #e8e8e8;
}

.custom-button:hover::before {
    width: 100%;
}

.custom-cancel {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.custom-cancel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

.custom-cancel:hover {
    color: #e8e8e8;
}

.custom-cancel:hover::before {
    width: 100%;
}

.custom-landing {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.custom-landing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

.custom-landing:hover {
    color: #e8e8e8;
}

.custom-landing:hover::before {
    width: 100%;
}

/* Responsive styles */

@media screen and (max-width: 768px) {
    .custom-container {
        padding: 30px;
    }
    .user-name {
        font-family: "Bebas Neue";
        font-size: 30px;
    }
    .img {
        height: 140px;
        width: 140px;
    }
    .url {
        font-family: "Bebas Neue";
        font-size: 18px;
    }
}

@media screen and (max-width: 640px) {
    .custom-container {
        padding: 20px;
    }
    .img {
        height: 110px;
        width: 110px;
    }
    /* Adjust other styles as needed for smaller screens */
}
