.inter-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
}

.body_signupFrame {
    width: 100%;
    height: 100%;


    align-content: center;
    justify-items: center;
}

.body_signupFrame_Frame {
    justify-items: center;


    width: 30%;
    height: 70%;
}

.body_signupFrame_Frame_Title {
    margin-top: 0;
    margin-bottom: 10px;

    font-size: calc(2.7vw + 1vh);
    font-weight: 600;
}

.body_signupFrame_Frame_input {
    width: 65%;
    height: 5%;

    margin-top: 10px;
    margin-bottom: 15px;

    outline: none;
    border: none;

    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding-left: 15px;

    display: block;
}

.body_signupFrame_Frame_continue {
    font-size: calc(1.35vw + .5vh);
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 5px;
    width: fit-content;

    border-radius: 12px;
    background: linear-gradient(
        to bottom, 
        rgb(2, 103, 255), 
        rgb(120, 201, 255)
    );
    color: white;

    position: relative;
    cursor: pointer;
    overflow: hidden;

    transition: transform 0.2s ease, box-shadow 0.2s ease;

    padding: 10px 15px;
}

.body_signupFrame_Frame_continue::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgb(2, 103, 255), rgb(120, 201, 255));
}


.body_signupFrame_Frame_continue::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgb(2, 76, 189), rgb(90, 151, 192));
    opacity: 0;
    transition: opacity 0.5s ease;
}


.body_signupFrame_Frame_continue:hover::before {
    opacity: 1;
}

.body_signupFrame_Frame_continue:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.body_signupFrame_Frame_ChangeFrame {
    display: flex;
    align-items: center;
}

.body_signupFrame_Frame_ChangeFrame_text {

    color: black;

    margin-top: 15px;
    margin-bottom: 0;
    display: block;
    font-size: calc(0.81vw + .3vh);
    font-weight: 400;
    margin-left: 5px;
}

.sign-up {
    text-decoration: underline;
    cursor: pointer;
}

.body_signupFrame_Frame_text {
    font-size: calc(0.81vw + .3vh);
    font-weight: 400;
    margin-left: 5px;
    width: 69%;

    margin-top: 0;
    margin-bottom: 0;
}
