* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
body {
    background: #f3f5f9;
}
.container {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: auto;
    max-width: 400px;
}
.logo {
    max-width: 40%;
    margin: 0 auto;
    display: block;
}
.name {
    display: flex;
    gap: 10px;
}
.form-group {
    margin-bottom: 15px;
}
label {
    font-weight: bold;
    color: #444;
}
input, select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}
input:focus, select:focus {
    border-color: #1c2d49;
    outline: none;
}
.deposit-input {
    display: flex;
    align-items: center;
}
.deposit-input span {
    background: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 6px 0 0 6px;
}
.deposit-input input {
    border-radius: 0 6px 6px 0;
    border-left: none;
    flex: 1;
}
.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.checkbox input {
    width: auto;
    margin-right: 8px;
}
button {
    width: 100%;
    padding: 12px;
    background: #1c2d49;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
}

button:hover {
    background: #0056b3;
}
    /* Responsive */
@media(max-width: 480px) {
    .container {
        padding: 20px;
    }
}
input, textarea, select {
  font-size: 16px;
}