.container {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    width: 100%;
    max-width: 400px;
}

.icon {
    font-size: 50px;
    color: #EAB310;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    color: #EAB310;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.btn, input[type='submit'] {
    background-color: #EAB310;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #45a049;
}
