*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.result{
    height: 45vh;
    width: 23vw;
     text-align: center;
    border-radius: 10px;
  background-color:  #0F0D17;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#0F0D17, #0F0D17),
        linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    background-origin: border-box;
    background-clip: padding-box, border-box;

    box-shadow:
        0 0 20px rgba(226, 72, 153, 0.2),
        0 0 40px rgba(107, 33, 168, 0.15);

    color: #FFFFFF;
    
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    background-color:#0E0D12;
    min-height: 80vh;
    margin-top: 7vh;
}
.container{
    background-color: #15141A;
     width: 300px;
     height: auto;
     text-align: center;
   text-align: center;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid transparent;
background:
    linear-gradient(#15141A, #15141A) padding-box,
    linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4) border-box;
box-shadow:
    0 0 10px rgba(221, 42, 123, 0.25),
    0 0 20px rgba(129, 52, 175, 0.22),
    0 0 30px rgba(245, 133, 41, 0.15);
    
}
h2{
    color: white;
}
h1{
     color: #A855F7;
    margin-top: 10px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
     background: linear-gradient(90deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.input-box{
   position: relative;
   margin-bottom: 20px;  
       margin-top: 5vh;  
}

.input-box input{
    width: 85%;
    height: 6vh;
    padding: 9px;
    outline: none;
     background: #1C1B22;
    border: 1px solid #36343D;
    border-radius: 8px;
    transition: 0.3s;
     color: #FFFFFF;
    color-scheme: dark;
}
.input-box input:focus{
   border-color: #8B5CF6;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.35);
}
label{
    position: absolute;
    top: 50%;
    left: 28px;
  color: #8F8C98;
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.25s;

}
.input-box input:focus + label ,
.input-box input:valid + label{
    top: -8px;
    padding: 0 6px;
    font-size: 12px;
    color: #A855F7;
    font-size: 11px;
    background: #15141A;
 
}
button{
     width: 80%;
    border: none;
    border-radius: 9px;
    padding: 12px;
    margin-top: 89px;
    font-size: medium;
    font-weight: 200;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 8px;
       background: linear-gradient(90deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: #FFFFFF;
}
button:hover{
   
    background: linear-gradient(90deg, #515BD4, #8134AF, #DD2A7B, #F58529);

}
/* TABLET */

@media (max-width:900px){

.container{

width:350px;

padding:20px;

}

}

/* MOBILE */

@media (max-width:600px){

body{

padding:20px;

min-height:100vh;

}
.result{
    display: none;
         
     width: 100%;
    max-width: 386px;
      height: auto;
                       padding: 88px 20px;
}
.result h2 {
    margin-bottom: 12px;
            font-size: 25px;
}

.result p {
    margin: 8px 15px;
    line-height: 1.6;
            font-size: 19px;
}
.result img{
             margin-bottom: 4px;
        height: 133px;
        width: 167px;
}

.container{

        width: 100%;
               height: 439px;
        max-width: 386px;
        padding: 20px;
        position: relative;
        bottom: 63px;

}

h1{

        font-size: 42px;

}
.input-box{
   position: relative;
          margin-bottom: 42px; 
       margin-top: 5vh;  
}
.input-box input{

width:100%;

}

label{

left:15px;
        font-size: 20px;

}
.input-box input:focus + label,
.input-box input:valid + label {
    font-size: 21px;
}
button{

        width: 92%;
        height: 55px;
        font-size: 21px;
        font-weight: 700;

}

}
/* Username: emilys
Password: emilyspass */