body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
}

.container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    font-size: 24px;
}

input[type=text], input[type=password],input[type=file], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    display: inline-block;
        padding: 10px 20px;
        border-radius: 50px;
        background-color: #FF7F11;
        color: #fff;
        font-size: 12px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
        animation-delay: 0.5s;
}

input[type=submit]:hover {
    background-color: purple;
    color: #fff;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 600px) {
    .container {
        max-width: 100%;
    }
    
    input[type=submit] {
        float: none;
        width: 100%;
    }

    h1 {
        font-size: 18px;
      }
      logo {
        max-width: 100%;
      }
}