@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
            
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: linear-gradient(60deg, #96deda 0%, #50c9c3 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 500px;
}

.number-input, .verification, .result {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

input {
    font-size: 17px;
    outline: none;
    padding: 5px 10px;
}

button {
    font-size: 17px;
    padding: 7px;
    border: none;
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #44a29d;
    border-radius: 5px;
    width: 100%;
    color: #ffff;
    cursor: pointer;
}

button:hover {
    background-color: #3e8e8a;
}

img {
    width: 50px;
}