﻿/* confirmation.css */

body {
  background: #fff8f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.thank-you-container {
  text-align: center;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  max-width: 500px;
}

.thank-you-container i {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.thank-you-container h1 {
  color: #d63447;
  margin-bottom: 15px;
  font-size: 2rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.home-btn {
  text-decoration: none;
  background-color: #d63447;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  transition: background 0.3s;
}

.home-btn:hover {
  background-color: #a82032;
}