* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(to right, #cb232c, #ce1d61);
    
}

form {
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: #ffffff30;
    border-radius: 25px;
    text-align: center;
    padding: 40px 40px;
    box-shadow: 0 5px 10px rgba(71, 3, 6, 0.7);
  
}

form .title {
    color:rgba(71, 3, 6, 0.7);
    font-weight: 600;
    margin-bottom: 30px;
}

form label {
    margin-bottom: 45px;
}

form label .fa-solid {
    font-size: 30px;
    color: #cb232c;
    margin-right: 20px;
}

form label input {
    outline: none;
    border: none;
    color: #252525;
    border-bottom: solid 1px #ce1d61;
    padding: 0 5px;
    font-size: 24px;
}

form label input::placeholder {
    color: rgba(37, 37, 37, 0.5);
}


form .link {
    color: #252525;
    margin-bottom: 15px;
}

form button {
    color: #fff;
    border: none;
    background: linear-gradient(to right, #cb232c, #ce1d61);
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 25px;
}