﻿CBSmall label {
    display: block;
    float: right;
    padding-left: 5px;
    white-space: nowrap;
    cursor: default;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.3rem;
}

html {
    overflow: hidden;
}

body {
    background-color: #e5edf1;
}

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e5edf1;
    margin: 0;
}

.main_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    border-radius: 5px;
    background-color: whitesmoke;
}

.main_info {
    margin: 20px 0;
    max-width: 25vw;
    padding: 0 10px;
}

.main_info-title {
    margin: 10px 0;
    font-size: 18px;
}

.main_info-desc p {
    margin-bottom: 5px; 
    font-size: 16px;
}

.main_info-input {
    display: flex;
    flex-direction: column;
}

.main_info-input label {
    font-weight: bold;
    margin-top: 15px;
    font-size: 16px;
}

.new_input {
    max-width: 25vw;
    height: 40px;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
}

.logo {
    width: 250px;
    height: 130px;
}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn_continue {
    margin-bottom: 15px;
    height: 40px;
    border-radius: 8px;
    background-color: #1D5871;
    color: #f2f9f6;
    font-weight: bold;
    font-size: 16px;
}

btn_continue:hover {
    background-color: #d7d34a;
    color: #1d5871;
    cursor: pointer;
}

.btn_back {
    margin-bottom: 15px;
    height: 40px;
    border-radius: 8px;
    background-color: #f2f9f6;
    font-weight: bold;
    font-size: 16px;
}

.btn_back:hover {
    background-color: lightgray;
    color: black;
    cursor: pointer;
}

.bold {
    font-weight: bold;
}