body {
    font-family: Montserrat;
    font-weight: 400;
}

.main {
    display: flex;
    align-items: center;
    flex-direction: column
}

.input {
    height: 40px;
    width: 210px;
    border-color: #3699ff;
    border-radius: 5px;
    font-size: 28px;
}

.btn {
    margin-top: 20px;
    background-color: transparent;
    color: #3699ff;
    border: 1.5px solid #3699ff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: Montserrat;
}

.btn:hover {
    background-color: #3699ff;
    color: #fff;
}

