body {
            font-family: Arial, sans-serif;
            background-color: rgb(204, 232, 255);
            margin: 0;
            padding: 0;
            color: #333;
        }
		.container {
              display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
		 .header {
            display: flex;
            align-items: center; 
            justify-content: center; 
            margin-bottom: 30px;
        }
		form{
		 background-color: #ffffff;
            padding: 30px;
            border-radius: 70px;
            width: 100%;
            max-width: 400px;
            text-align: center;	
		}
		 h1 {
            color: rgb(38, 119, 218);
            font-size: 24px;
            margin-bottom: 20px;
        }
		input, select {
            width: 370px;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
		.envia {
            width: 390px;
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
		 .envia:hover {
            background-color: #45a049;
        }
 .link, .back-button {
            display: block;
            margin-top: 10px;
            color: #007BFF;
            text-decoration: none;
        }

        .link:hover, .back-button:hover {
            text-decoration: underline;
        }
		 label {
            font-size: 14px;
            color: #333;
            margin-bottom: 5px;
        }
input[type="text"],
        input[type="password"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 20px;
            font-size: 16px;
            background-color: #f9f9f9;
        }

        input[type="text"]:focus,
        input[type="password"]:focus {
            border-color: #007BFF;
            outline: none;
        }

        input[type="submit"] {
            background-color: rgb(38, 119, 218);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 20px;
            font-size: 16px;
            width: 60%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        input[type="submit"]:hover {
            background-color: #0056b3;
        }
		.link {
            display: block;
            margin-top: 15px;
            color: #007BFF;
            text-decoration: none;
            font-size: 14px;
        }
    
        .link:hover {
            text-decoration: underline;
        }