* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.div1-0 {
    text-align: center;
}

.div1-0-img1 {
    height: 80px;
}

.div1-0-p1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 25px;
    color: orange;
}

.div1-0-p2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #ffaee0;
}

.div1 {
    background: rgb(0, 0, 0);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.div1-img1 {
    width: 100%;
}

.div1-1 {
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
    background: white;
    vertical-align: middle;
    padding: 20px;
}

.div1-1-label1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
}

.div1-1-input1 {
    width: 300px;
    height: 30px;
    border-radius: 5px;
}

.div1-1-button1 {
    width: 300px;
    height: 30px;
    border: 1px solid rgb(255, 164, 255);
    border-radius: 20px;
    background: rgb(255, 164, 255);
    transition: all 0.2s ease;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.div1-1-button1:hover {
    background: rgb(255, 96, 255);
}

.div1-1-button1:active {
    transform:  scale(1.02);
}

