* {
    
    margin: 0;
    padding:  0 0 0 0 ;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000814;
    background-image: url(https://images.unsplash.com/photo-1485470733090-0aae1788d5af?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8bmlnaHQlMjBsYW5kc2NhcGV8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=600);
                            /*background-image: url('../bible/pexels-jmark-250609.jpg');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}


.Signup-box {
    
    padding: 5em 1.5em;
    color: #fff;
    background: transparent;
    background-color: rgba(225, 225, 225, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: clamp(360px, 30vw, 420px);
    padding: clamp(1.5rem, 2vw, 1rem);
    box-shadow: 1px 10px 25px rgba(0, 0, 0, 0.3);
}

.layout{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
    "box-2 box-2"
    "box-3 box-4"
    "box-5 box-6"
    "box-7 box-7"
    "box-8 box-9"
    "box-10 box-11"
    "box-12 box-12"
    "box-13 box-13"
    "box-14 box-14";
    gap: 1em;
    padding-bottom: 0.5em;
}

.login-link{
    justify-self: center;

}
.login-link a{
    font-size: 1em;
    color: #48cae4;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}
.login-link a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: #48cae4;
    transition: width 0.6s ease;
    
}
.login-link a:hover::after{
    width: 100%;
}


h2 {
    font-size: 2em;
    text-align: center;
}

input[type="radio"]{
    width: 17px;
    height: 17px;
    margin-left: 5px;
    margin-bottom: 25px;
    position: relative;
    top: 2px;
    bottom: 5px;
}

@font-face {
  font-family: 'Skam';
  src: url(Skam\ Font.otf);
  font-weight: normal;
  font-style: normal;
}
.input-box {
    position: relative;
    margin: 0px 0;
    width: 100%;
}
.input-box input, select {
    width: 100%;
    height: 50px;
    background: #d8d8d8;
    border: none;
    border-radius: 8px;
    transition: .5s ease;
    padding: 0 20px;
    color: #000000;
    margin-bottom: 0.6em;
}


    

.btn{
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 8px;
    background-color: #6285d7;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    font-weight: 600;
    transition: .5s ease;
}
.btn:hover {
    background-color: #48cae4;
}

footer {
    padding: 3em 3em ;
    background-color: none);
    border-top: 1px  ;
    margin-top: 1em;
    color: #fff;
    width: 100%;
    
    backdrop-filter: blur(50px);
}

footer p {
    text-align:  center;
}