/* Importing Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


body {
    background-color:#505081;
    height: 100vh;
    width: 100%;
}

.wrapper {
    position: absolute;
    max-width: 400px;
    width: 100%;
    background-color: #fff;
    text-align: center;
    left: 50%;
    top: 50%;
    border-radius: 12px;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
}

.wrapper .top {
    height: 150px;
    position: relative;
    font-size: 100px;
    background-color: #0f0e47;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .top::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background-color: #0f0e47;
    bottom: -10px;
    transform: rotate(45deg);
}

.wrapper .top i {
    font-size: 80px;
    color: #fff;
}

.wrapper .bottom {
    padding: 30px;
}

.bottom .info {
    font-size: 20px;
    font-weight: 500;
}

form .input-box {
    width: 100%;
    height: 45px;
    /* background-color: red; */
    margin: 15px 0 10px 0;
}


form .input-box input,
form .input-box button {
    width: 100%;
    height: 100%;
    font-size: 18px;
    border-radius: 24px;
    outline: none;
    transition: all 0.4s ease;
}

form .input-box input {
    padding-left: 20px;
    border: 2px solid #ccc;
}

form .input-box input:focus,
form .input-box input:valid {
    border-color: #0f0e47;
    background-color: #0f0e472d;
}

form .input-box button {
    border: none;
    background-color: #0f0e47;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
}

form .input-box button:hover {
    background-color: #020229;
}

.bottom footer {
    font-size: 16px;
    margin-top: 12px;
}