@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@700&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    font-family: Mulish;
    background: radial-gradient(123.22% 129.67% at 100.89% -5.6%, #000 0%, #04080F 100%);
    margin: 0;
}

.box {
    position: relative; 
    display: flex;
    flex-direction: column;
    width: 25rem;
    height: 25rem;
    padding: 32px 0px 8px 0px;
    justify-content: center;
    align-items: center;
    border-radius: 94px;
    background: var(--Dark-DB-2, #0E101C);
    box-shadow: -48px 53px 180px 0px rgba(97, 0, 255, 0.18), 40px -46px 234px 0px rgba(0, 80, 125, 0.58);
}

.box::before {
    content: "";
    position: absolute;
    top: -2px; 
    right: -2px;
    bottom: -2px;
    left: -2px; 
    z-index: -1; 
    border-radius: inherit; 
    background: linear-gradient(240deg, rgba(44, 217, 255, 1), rgba(4, 132, 251, 0.8), rgba(126, 178, 255, 0.81), rgba(255, 255, 255, 0), rgba(122, 159, 255, 0.82), rgba(33, 14, 255, 1));
}
  
.box form {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;     
    width: 405px;
    height: 720px;  
}
  
input {
    width: 280px;
    height: 40px;
    flex-shrink: 0;
    fill: rgba(245, 244, 242, 0.90);
    background-color: rgba(245, 244, 242, 0.342); 
    margin: 10px 0px;
    border-radius: 94px;
    color: white; 
    border: none;
    outline: none;
    padding-left: 10px;
}

input::placeholder {
    color: rgb(31, 30, 30); 
    padding-left: 5px;
}

button {
    width: 202px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 31.5px;
    background: rgba(2, 41, 78, 1);
    color: white;
    margin-top: 20px; 
    border: none;
    outline: none;
}

button:hover {
    color: white;
    border: 0.5px solid rgba(155, 217, 219, 0.329); 
    box-shadow: 
        -8px 12px 40px -3px rgba(50, 13, 182, 0.562),  
        12px -8px 45px -5px rgba(10, 219, 219, 0.685); 
    border-radius: 94px;
    background: var(--Dark-DB-2, #0E101C);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;  
    color: #ffffff2c;
    text-align: center;
    font-size: 8px;
    padding-bottom: 25px;
}
