* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

body {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(background.jpg);
    background-size: cover;
    
}

.block {
    width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.block_color {
    border-radius: 10px 10px 0 0;
    height: 150px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

h1 {
    color: black;
    text-transform: uppercase;
    margin-bottom: 10px;
}
input {
    cursor: pointer;
    width: 250px;
    margin-bottom: 5px;
}

p {
    color: white;
    font-size: 12px;
    font-weight: 500;
}

span {
    text-align: center;
    width: 180px;
    padding: 5px;
    background-color: #0088cc;
    border-radius: 5px;
    color: white;
    margin-top: 10px;
    font-size: 12px;
    color: black;
}

.red {
    color: rgb(253, 53, 53);
}

.green {
    color: rgb(4, 172, 4);
}

.blue {
    color: rgb(91, 91, 255);
}
