/*Armands Reimanis*/
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

button {
    padding: 15px 30px;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
}


.row {
  display: flex;
}

.column {
  flex: 50%;
}

.hidden {
    display: none;
}

.radio-container {
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.radio-input {
    display: none;
}

.radio-label {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    line-height: 40px; /* This ensures the text is vertically centered */
    transition: all 0.3s ease;
}

.radio-input:checked + .radio-label {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.radio-label:hover {
    background-color: #eee;
}

.form-container {
    display: flex;
    max-width: 600px;
    margin: 20px auto;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 10px;
    font-weight: bold;
}

.input-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input[type="text" i] {
    margin-bottom: 5px;
	margin-left: 10px;
}

.button-group {
    display: flex;
    justify-content: center;
}

button:hover {
    background-color: #45a049;
}
