body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95vw;
    height: 98vh;
    background: linear-gradient(rgb(169, 56, 169), rgb(82, 69, 146));

}

.frame {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    width: 450px;
    height: auto;
    padding-bottom: 35px;
    border: 18px;
    background-color: #fafafaf5;
    border-radius: 25px;
    box-shadow: black 0 0 30px;
    border: 7px solid black
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    height: fit-content;
    background-color:rgb(176, 45, 199);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom: 5px solid black;
    padding-bottom: 10px;
    padding-top: 10px;
}
header > h1 {
    margin-top: 10px;
    margin-bottom: -20px;
}
header > p {
    margin-left: -1px;
    margin-top: 20px;
    margin-bottom: 15px;
    color: white;
}

p {
    margin-left: 20px;
    margin-top: 20px;
    color: black;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 3px;;
}

.dupa {
    display: flex;
    align-self: center;
    height: 45px;
    width: 350px;
    font-size: 20px;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 3px solid gray ;
    background-color: #ffffff00;;
    margin-bottom: 20px;
    margin-bottom: 10px;
}

input:focus{
    border-top: 0;
    border-right: 0;
    outline: none;
}


.checkbox-container {
    display: flex;
    align-items: center;
    color: black;
}

#remember {
    width: 30px;
    height: 30px;
}

.checkbox-container {
    margin-top: 10px;
    margin-left: 55px;
}

.signup-button {
    color: white;
    border-radius: 15px;
    margin-left: 25px;
    width: 175px;
    height: 50px;
    font-size: 20px;
    background-color: rgb(176, 45, 199);
}

.buttons-container {
    margin-left: 50px;
}

.sign-up-login {
    
    color: white;
    border-radius: 15px;
    width: 350px;
    height: 50px;
    font-size: 20px;
    background-color: rgb(176, 45, 199);
}

.or {
    margin-left: -10px;
    display: flex;
    align-self: center;
    justify-self: center;
    text-align: center;
}

#notification {
    display: none;
    flex-direction: column;
    color: white;
    align-items: center;
    text-align: center;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: absolute;
    width: 400px;
    padding-bottom: 30px;
    height: auto;
    background-color: white;
    border-radius: 10px;
    border: 6px solid black ;
}

#notification > h1 {
    padding-top: 10px;
    
    text-align: center;
    margin: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: red;
    width: 100%;
    height: 60px;
}

#notification > p {
    display: flex;
    align-self: center;
    font-size: 24px;
    margin-right: 2vh;
}

#notification > button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: red;
    width: 100px;
    margin: 0;
    margin-top: 20px;
    transition: all 0.2s ease;
}

#notification > button:hover {
    background-color: rgb(255, 73, 73);

}

.verification-cont {
    display: flex;
    flex-direction: column;
    border-radius: 19px;
    width: 400px;
    height: 300px;
    border: 5px solid black;
    background-color: rgba(177, 177, 177, 0.314);
}

.verification-cont p {
    color: white;
    font-weight: 400;
    margin-top: 5px;
}

.v-head{
    display: flex;
    height: 30px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    color: white;
    font-size: 25px;
}
.verification-code {
    display: flex;
    justify-content: center;
    gap: 6px; /* space between the squares */
    margin-top: 50px;
  }

  /* Each input square styling */
  .verification-code input {
    width: 30px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    font-size: 24px;
    outline: none;
    margin-top: -30px;
    transition: border-color 0.2s ease;
  }

  /* Focus state styling */
  .verification-code input:focus {
    border-color: #007BFF;
  }

 #submit-code {
    margin-top: 15px;
    align-self: center;
    color: white;
    border-radius: 15px;
    width: 150px;
    height: 50px;
    font-size: 20px;
    border: 3px solid black ;
    background-color: rgb(176, 45, 199);
}

.h-captcha {
    display: flex;
    position: absolute;
    margin-left: 1.5vw;
    margin-top: -44.6vh;
}

.blurEffect{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.732);
    backdrop-filter: blur(10px);
}