body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}
.container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
button {
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
}
.win { background-color: #4CAF50; color: white; padding: 10px; border-radius: 5px; }
.lose { background-color: #ff4d4d; color: white; padding: 10px; border-radius: 5px; }

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.wheel-container {
    position: relative;
    width: 80vw;
    max-width: 300px;
    height: 80vw;
    max-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 3s ease-out;
}
.indicator {
    position: absolute;
    top: 10px;
    width: 30px;
    height: 10px;
    background-color: black;
    border-radius: 5px;
}
.message {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}
.form-container {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    background: white;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
}
input {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}
button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    text-align: center;
}
@media (max-width: 480px) {
    .indicator {
        width: 25px;
    }
    .message {
        font-size: 16px;
    }
}


.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    max-width: 100%;
}

.input-group span {
    background: #f0f0f0;
    padding: 13px;
    font-weight: bold;
    border-right: 1px solid #ccc;
}

.input-group input {
    border: none;
    outline: none;
    padding: 13px;
    flex: 1;
    font-size: 16px;
}

.input-group input:focus {
    background: #f9f9f9;
}