﻿/* styles.css */


body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.butback {
    color: #000000;
    width: 100px;
    text-align: center;
    text-decoration: none;
    background-color: #e5e5e5;
    border: 1px solid #808080;
    padding: 5px;
}

.container {
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #000000;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
}

input[type="file"],
input[type="email"],
input[type="text"],
input[type="submit"] {
    width: calc(100% - 12px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #5cb85c;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

    input[type="submit"]:hover {
        background-color: #4cae4c;
    }
